home *** CD-ROM | disk | FTP | other *** search
- #include "stdafx.h"
-
- cSpot::cSpot(cSpot **list, cSpot *orig)
- {
- add_end((cList **)list);
-
- copy(orig);
- }
-
- cSpot::cSpot(cSpot **list, int _x, int _y, char *_label)
- {
- add_end((cList **)list);
-
- set_position(_x, _y);
-
- label = _label;
- }
-
- void cSpot::copy(cSpot *orig)
- {
- ASSERT(orig != 0);
-
- set_position(orig->x, orig->y);
-
- label = orig->label;
- }
-
-